home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
03-03.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-09-30
|
355 b
|
27 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
IF FGtestmode(3,1) THEN
FGsetmode 3
ELSEIF FGtestmode(7,1) THEN
FGsetmode 7
ELSE
PRINT "This program requires ";
PRINT "an 80-column display."
STOP
END IF
FGcursor 0
FGsetcolor 15
FGtext "Hello, world.", 13
FGwaitkey
FGsetmode OldMode
FGreset
END